home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / gg / ncurses-mos-bi.readme < prev    next >
Text File  |  2004-09-23  |  6KB  |  134 lines

  1. Short:    GNU 'new curses' library
  2. Author:   Pavel Fedin <sonic_amiga@rambler.ru>
  3. Uploader: Pavel Fedin <sonic_amiga@rambler.ru>
  4. Version:  5.4
  5. Type:     dev/gg
  6.  
  7.    The ncurses (new curses) library is a freeware emulation of System V
  8.    Release 4.0 curses. It uses terminfo format, supports pads and color
  9.    and multiple highlights and forms characters and function-key mapping,
  10.    and has all the other SYSV-curses enhancements over BSD curses.
  11.  
  12.    In mid-June 1995, the maintainer of 4.4BSD curses declared that he
  13.    considered 4.4BSD curses obsolete, and is encouraging the keepers of
  14.    Unix releases such as BSD/OS, freeBSD and netBSD to switch over to
  15.    ncurses.
  16.  
  17.    The ncurses code was developed under Linux. It should port easily to
  18.    any ANSI/POSIX-conforming UNIX. It has even been ported to OS/2 Warp!
  19.  
  20.    The distribution includes the library and support utilities, including
  21.    a terminfo compiler tic(1), a decompiler infocmp(1), clear(1),
  22.    tput(1), tset(1), and a termcap conversion tool captoinfo(1). Full
  23.    manual pages are provided for the library and tools.
  24.  
  25.    The ncurses distribution is available via anonymous FTP at:
  26.    ftp://ftp.netcom.com/pub/zm/zmbenhal/ncurses. It is also carried on
  27.    the GNU distribution site at ftp://prep.ai.mit.edu/pub/gnu.
  28.  
  29.                               FEATURES OF NCURSES
  30.  
  31.    The ncurses package is fully compatible with SVr4 curses:
  32.  
  33.      * All 257 of the SVr4 calls have been implemented (and are
  34.        documented).
  35.  
  36.      * Full support for SVr4 curses features including keyboard mapping,
  37.        color, forms-drawing with ACS characters, and automatic
  38.        recognition of keypad and function keys.
  39.  
  40.      * An emulation of the System V Release 4 panels library, supporting
  41.        a stack of windows with backing store, is included.
  42.  
  43.      * An emulation of the System V Release 4 menus library, supporting a
  44.        uniform but flexible interface for menu programming, is included.
  45.  
  46.      * An emulation of the System V Release 4 form library, supporting
  47.        data collection through on-screen forms, is included.
  48.  
  49.      * Binary terminfo entries generated by the ncurses tic(1)
  50.        implementation are bit-for-bit-compatible with the entry format
  51.        SVr4 curses uses.
  52.  
  53.      * The utilities have options to allow you to filter terminfo entries
  54.        for use with less capable _curses_/_terminfo_ versions such as the
  55.        HP/UX and AIX ports.
  56.  
  57.    The ncurses package also has many useful extensions over SVr4:
  58.  
  59.      * The API is 8-bit clean and base-level conformant with the X/OPEN
  60.        curses specification, XSI Curses (that is, it implements all BASE
  61.        level features, but not all EXTENDED features). Most
  62.        EXTENDED-level features not directly concerned with wide-character
  63.        support are implemented, including many function calls not
  64.        supported under SVr4 curses (but portability of all calls is
  65.        documented so you can use the SVr4 subset only).
  66.  
  67.      * Unlike SVr4 curses, ncurses can write to the rightmost-bottommost
  68.        corner of the screen if your terminal has an insert-character
  69.        capability.
  70.  
  71.      * (PC-clone boxes only) Support for access to the IBM PC ROM
  72.        characters 0-32 through the highlight A_ALTCHARSET.
  73.  
  74.      * Support for mouse event reporting under xterm.
  75.  
  76.      * The function wresize() allows you to resize windows, preserving
  77.        their data.
  78.      * Better cursor-movement optimization. The package now features a
  79.        cursor-local-movement computation more efficient than either BSD's
  80.        or System V's.
  81.  
  82.      * Super hardware scrolling support. The screen-update code
  83.        incorporates a novel, simple, and cheap algorithm that enables it
  84.        to make optimal use of hardware scrolling, line-insertion, and
  85.        line-deletion for screen-line movements. This algorithm is more
  86.        powerful than the 4.4BSD curses quickch() routine.
  87.  
  88.      * It is possible to generate the library with a list of pre-loaded
  89.        fallback entries linked to it so that it can serve those terminal
  90.        types even when no terminfo tree or termcap file is accessible
  91.        (this may be useful for support of screen-oriented programs that
  92.        must run in single-user mode).
  93.  
  94.      * The tic(1)/captoinfo utility provided with ncurses has the ability
  95.        to translate many termcaps from the XENIX, IBM and AT&T extension
  96.        sets.
  97.  
  98.      * A BSD-like tset(1) utility is provided.
  99.  
  100.      * The ncurses library and utilities will automatically read terminfo
  101.        entries from $HOME/.terminfo if it exists, and compile to that
  102.        directory if it exists and the user has no write access to the
  103.        system directory. This feature makes it easier for users to have
  104.        personal terminfo entries without giving up access to the system
  105.        terminfo directory.
  106.  
  107.      * In terminfo source files, use capabilities may refer not just to
  108.        other entries in the same source file (as in System V) but also to
  109.        compiled entries in either the system terminfo directory or the
  110.        user's $HOME/.terminfo directory.
  111.  
  112.      * A script (_capconvert_) is provided to help BSD users transition
  113.        from termcap to terminfo. It gathers the information in a TERMCAP
  114.        environment variable and/or a ~/.termcap local entries file and
  115.        converts it to an equivalent local terminfo tree under
  116.        $HOME/.terminfo.
  117.  
  118.      * Automatic fallback to the /etc/termcap file can be compiled in
  119.        when it is not possible to build a terminfo tree. This feature is
  120.        neither fast nor cheap, you don't want to use it unless you have
  121.        to, but it's there.
  122.  
  123.      * The table-of-entries utility _toe_ makes it easy for users to see
  124.        exactly what terminal types are available on the system.
  125.  
  126.      * The library meets the XSI requirement that every macro entry point
  127.        have a corresponding function which may be linked (and will be
  128.        prototype-checked) if the macro definition is disabled with
  129.        #undef.
  130.  
  131.      * An HTML "Introduction to Programming with NCURSES" document
  132.        provides a narrative introduction to the curses programming
  133.        interface.
  134.